home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Application
/
Application.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
508b
|
29 lines
// Application.h
#ifndef Application_h
#define Application_h
#ifndef ApplicationBase_h
#include "ApplicationBase.h"
#endif
#ifndef CommandLink_h
#include "CommandLink.h"
#endif
#ifndef Quitting_h
#include "Quitting.h"
#endif
class Application: public ApplicationBase
{
private:
CommandLink< Creating > creatingLink;
CommandLink< Opening > openingLink;
CommandLink< Quitting > quittingLink;
public:
Application( uint32 masterPointers = 128,
uint32 extraStackSpace = 0 );
};
#endif